home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Developer Scripts / FileMaker Pro 2.0 AS Examples / Syntax Examples / Whose examples < prev   
Text File  |  1992-11-25  |  296b  |  8 lines

  1. tell application "FileMaker Pro"
  2.     Get Data (every Record whose first Cell = 1)
  3.     every Record whose Cell "a" = 1 and Cell 2 contains "cat"
  4.     Show (every Record whose first Cell = "test")
  5.     Duplicate (every Record whose first Cell = "test")
  6.     Delete (middle Record whose first Cell = "test")
  7. end tell
  8.